table.NEED_REFRESH Function

Syntax

Result_Flag as L = <TBL>.NEED_REFRESH()

Description

Returns true when a refresh is needed

Discussion

The <TBL>.NEED_REFRESH() method returns .T. (TRUE) if the record in the record buffer for the table referenced by needs to be refreshed. See <TBL>.REFRESH() for details.

Example

dim tbl as P
tbl = table.open("Functions")
? tbl.need_refresh()
= .F.

See Also